for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
'use strict';
const Sandcage = require('..');
const sandcage = new Sandcage('[YOUR SANDCAGE API KEY]');
const payload = {
page: 1,
'results_per_page': 10
};
sandcage
.listFiles(payload)
.then((result) => {
console.log(result);
});